home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 8 / Eagles_Nest_Mac_Collection_Disc_8.TOAST / Developer Tools⁄Additions / TextPertDK#1 / MPW C Sources & Examples.image / Example2 / Example2.h < prev    next >
Text File  |  1991-08-01  |  10KB  |  253 lines

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    Apple Macintosh Developer Technical Support
  4. #
  5. #    MultiFinder-Aware TextEdit Sample Application
  6. #
  7. #    TESample
  8. #
  9. #    TESample.h    -    Rez and C Include Source
  10. #
  11. #    Copyright © 1989 Apple Computer, Inc.
  12. #    All rights reserved.
  13. #
  14. #    Versions:    
  15. #                1.00                08/88
  16. #                1.01                11/88
  17. #                1.02                04/89    MPW 3.1
  18. #
  19. #    Components:
  20. #                TESample.p            April 1, 1989
  21. #                TESample.c            April 1, 1989
  22. #                TESampleGlue.a        April 1, 1989
  23. #                TESample.r            April 1, 1989
  24. #                TESample.h            April 1, 1989
  25. #                [P]TESample.make    April 1, 1989
  26. #                [C]TESample.make    April 1, 1989
  27. #
  28. #    TESample is an example application that demonstrates how 
  29. #    to initialize the commonly used toolbox managers, operate 
  30. #    successfully under MultiFinder, handle desk accessories and 
  31. #    create, grow, and zoom windows. The fundamental TextEdit 
  32. #    toolbox calls and TextEdit autoscroll are demonstrated. It 
  33. #    also shows how to create and maintain scrollbar controls.
  34. #
  35. #    It does not by any means demonstrate all the techniques you 
  36. #    need for a large application. In particular, Sample does not 
  37. #    cover exception handling, multiple windows/documents, 
  38. #    sophisticated memory management, printing, or undo. All of 
  39. #    these are vital parts of a normal full-sized application.
  40. #
  41. #    This application is an example of the form of a Macintosh 
  42. #    application; it is NOT a template. It is NOT intended to be 
  43. #    used as a foundation for the next world-class, best-selling, 
  44. #    600K application. A stick figure drawing of the human body may 
  45. #    be a good example of the form for a painting, but that does not 
  46. #    mean it should be used as the basis for the next Mona Lisa.
  47. #
  48. #    We recommend that you review this program or Sample before 
  49. #    beginning a new application. Sample is a simple app. which doesn’t 
  50. #    use TextEdit or the Control Manager.
  51. #
  52. ------------------------------------------------------------------------------*/
  53.  
  54. /*    These #defines correspond to values in the Pascal source code.
  55.     TESample.c and TESample.r include this file. */
  56.  
  57. /*    Determining an application's minimum size to request from MultiFinder depends
  58.     on many things, each of which can be unique to an application's function,
  59.     the anticipated environment, the developer's attitude of what constitutes
  60.     reasonable functionality and performance, etc. Here is a list of some things to
  61.     consider when determining the minimum size (and preferred size) for your
  62.     application. The list is pretty much in order of importance, but by no means
  63.     complete.
  64.     
  65.     1.    What is the minimum size needed to give almost 100 percent assurance
  66.         that the application won't crash because it ran out of memory? This
  67.         includes not only things that you do have direct control over such as
  68.         checking for NIL handles and pointers, but also things that some
  69.         feel are not so much under their control such as QuickDraw and the
  70.         Segment Loader.
  71.         
  72.     2.    What kind of performance can a user expect from the application when
  73.         it is running in the minimum memory configuration? Performance includes
  74.         not only speed in handling data, but also things like how many documents
  75.         can be opened, etc.
  76.         
  77.     3.    What are the typical sizes of scraps is [a boy dog] that a user might
  78.         wish to work with when lauching or switching to your application? If
  79.         the amount of memory is too small, the scrap may get lost [will have
  80.         to be shot]. This can be quite frustrating to the user.
  81.         
  82.     4.    The previous items have concentrated on topics that tend to cause an
  83.         increase in the minimum size to request from MultiFinder. On the flip
  84.         side, however, should be the consideration of what environments the
  85.         application may be running in. There may be a high probability that
  86.         many users with relatively small memory configurations will want to
  87.         avail themselves of your application. Or, many users might want to use it
  88.         while several other, possibly related/complementary applications are
  89.         running. If that is the case, it would be helpful to have a fairly
  90.         small minimum size.
  91.     
  92.     What we did for TESample:
  93.     
  94.         We determined the smallest heap size that TESample could have and still
  95.         run (22K). For the preferred size we added enough space to permit:
  96.             a. a maximum size TextEdit text handle (32000 characters)
  97.             b. a maximum usable TextEdit scrap (32000 characters)
  98.             b. a maximum scrap as a result of Copy (32000 characters)
  99.             d. a little performance cushion (see 2, above) (10K)
  100.         Result: 122K for preferred size
  101.         
  102.         For the minimum size we took the 22K and then scaled down our requirements
  103.         for a,b, and c above. We thought that providing 16K more would be lean
  104.         and mean (see 4, above).
  105.         Result: 38K for minimum size
  106. */
  107.  
  108. #define kPrefSize                122
  109. #define kMinSize                38
  110.     
  111. /* The following constants are used to identify menus and their items. The menu IDs
  112.    have an "m" prefix and the item numbers within each menu have an "i" prefix. */
  113. #define    mApple                    128        /* Apple menu */
  114. #define    iAbout                    1
  115.  
  116. #define    mFile                    129        /* File menu */
  117. #define    iNew                    1
  118. #define    iClose                    4
  119. #define    iQuit                    12
  120.  
  121. #define    mEdit                    130        /* Edit menu */
  122. #define    iUndo                    1
  123. #define    iCut                    3
  124. #define    iCopy                    4
  125. #define    iPaste                    5
  126. #define    iClear                    6
  127.  
  128. /*    1.01 - kTopLeft - This is for positioning the Disk Initialization dialogs. */
  129.  
  130. #define kDITop                    0x0050
  131. #define kDILeft                    0x0070
  132.  
  133. /* 1.01 - changed constants to begin with 'k' for consistency, except for resource IDs */
  134. /*    kTextMargin is the number of pixels we leave blank at the edge of the window. */
  135. #define kTextMargin                2
  136.  
  137. /* kMaxOpenDocuments is used to determine whether a new document can be opened
  138.    or created. We keep track of the number of open documents, and disable the
  139.    menu items that create a new document when the maximum is reached. If the
  140.    number of documents falls below the maximum, the items are enabled again. */
  141.  
  142. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  143.         Next constant has been changed for TextPert reader sample.
  144.         Before it was :
  145. #define    kMaxOpenDocuments        1
  146. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  147. #define    kMaxOpenDocuments        5
  148.     
  149. /*    kMaxDocWidth is an arbitrary number used to specify the width of the TERec's
  150.     destination rectangle so that word wrap and horizontal scrolling can be
  151.     demonstrated. */
  152. #define    kMaxDocWidth            576
  153.     
  154. /* kMinDocDim is used to limit the minimum dimension of a window when GrowWindow
  155.     is called. */
  156. #define    kMinDocDim                64
  157.  
  158. /*    kControlInvisible is used to 'turn off' controls (i.e., cause the control not
  159.     to be redrawn as a result of some Control Manager call such as SetCtlValue)
  160.     by being put into the contrlVis field of the record. kControlVisible is used
  161.     the same way to 'turn on' the control. */
  162. #define kControlInvisible        0
  163. #define kControlVisible            0xFF
  164.  
  165. /*    kScrollbarAdjust and kScrollbarWidth are used in calculating
  166.     values for control positioning and sizing. */
  167. #define kScrollbarWidth            16
  168. #define kScrollbarAdjust        (kScrollbarWidth - 1)
  169.  
  170. /*    kScrollTweek compensates for off-by-one requirements of the scrollbars
  171.  to have borders coincide with the growbox. */
  172. #define kScrollTweek            2
  173.     
  174. /*    kCrChar is used to match with a carriage return when calculating the
  175.     number of lines in the TextEdit record. kDelChar is used to check for
  176.     delete in keyDowns. */
  177. #define kCrChar                    13
  178. #define kDelChar                8
  179.     
  180. /*    kButtonScroll is how many pixels to scroll horizontally when the button part
  181.     of the horizontal scrollbar is pressed. */
  182. #define kButtonScroll            4
  183.     
  184. /*    kMaxTELength is an arbitrary number used to limit the length of text in the TERec
  185.     so that various errors won't occur from too many characters in the text. */
  186. #define    kMaxTELength            32000
  187.  
  188. /* kSysEnvironsVersion is passed to SysEnvirons to tell it which version of the
  189.    SysEnvRec we understand. */
  190. #define    kSysEnvironsVersion        1
  191.  
  192. /* kOSEvent is the event number of the suspend/resume and mouse-moved events sent
  193.    by MultiFinder. Once we determine that an event is an OSEvent, we look at the
  194.    high byte of the message sent to determine which kind it is. To differentiate
  195.    suspend and resume events we check the resumeMask bit. */
  196. #define    kOSEvent                app4Evt    /* event used by MultiFinder */
  197. #define    kSuspendResumeMessage    1        /* high byte of suspend/resume event message */
  198. #define    kResumeMask                1        /* bit of message field for resume vs. suspend */
  199. #define    kMouseMovedMessage        0xFA    /* high byte of mouse-moved event message */
  200. #define    kNoEvents                0        /* no events mask */
  201.  
  202. /* 1.01 - kMinHeap - This is the minimum result from the following
  203.      equation:
  204.             
  205.             ORD(GetApplLimit) - ORD(ApplicZone)
  206.             
  207.      for the application to run. It will insure that enough memory will
  208.      be around for reasonable-sized scraps, FKEYs, etc. to exist with the
  209.      application, and still give the application some 'breathing room'.
  210.      To derive this number, we ran under a MultiFinder partition that was
  211.      our requested minimum size, as given in the 'SIZE' resource. */
  212.      
  213. #define    kMinHeap                 (29 * 1024)
  214.     
  215. /* 1.01 - kMinSpace - This is the minimum result from PurgeSpace, when called
  216.      at initialization time, for the application to run. This number acts
  217.      as a double-check to insure that there really is enough memory for the
  218.      application to run, including what has been taken up already by
  219.      pre-loaded resources, the scrap, code, and other sundry memory blocks. */
  220.      
  221. #define    kMinSpace                (20 * 1024)
  222.  
  223. /*    kExtremeNeg and kExtremePos are used to set up wide open rectangles and regions. */
  224. #define kExtremeNeg                -32768
  225. #define kExtremePos                (32767 - 1)    /* required to address an old region bug */
  226.     
  227. /* kTESlop provides some extra security when pre-flighting edit commands. */
  228. #define    kTESlop                    1024
  229.  
  230. /* The following are indicies into STR# resources. */
  231. #define    eWrongMachine            1
  232. #define    eSmallSize                2
  233. #define    eNoMemory                3
  234. #define    eNoSpaceCut                4
  235. #define    eNoCut                    5
  236. #define    eNoCopy                    6
  237. #define    eExceedPaste            7
  238. #define    eNoSpacePaste            8
  239. #define    eNoWindow                9
  240. #define    eExceedChar                10
  241. #define    eNoPaste                11
  242.  
  243. #define    rMenuBar    128                /* application's menu bar */
  244. #define    rAboutAlert    128                /* about alert */
  245. #define    rUserAlert    129                /* user error alert */
  246. #define    rDocWindow    128                /* application's window */
  247. #define    rVScroll    128                /* vertical scrollbar control */
  248. #define    rHScroll    129                /* horizontal scrollbar control */
  249. #define    kErrStrings    128                /* error string list */
  250.  
  251.  
  252.         
  253.